From: Paul Donald Date: Mon, 3 Nov 2025 21:44:40 +0000 (+0100) Subject: luci-mod-network: hint that property belongs to mesh X-Git-Url: http://git.openwrt.org/%22https:/collectd.org//%22http:/www.crowdsec.net/%22/%22https:/collectd.org/%22http:/www.crowdsec.net/%22?a=commitdiff_plain;h=c935260b3026d805dd414bd266884cfe0600d03a;p=project%2Fluci.git luci-mod-network: hint that property belongs to mesh Hint also units with dBm. Signed-off-by: Paul Donald --- diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js index 6d107dae11..f8ff225bda 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js @@ -1046,7 +1046,8 @@ return view.extend({ o.default = '1'; o.depends('mode', 'mesh'); - o = ss.taboption('advanced', form.Value, 'mesh_rssi_threshold', _('RSSI threshold for joining'), _('0 = not using RSSI threshold, 1 = do not change driver default')); + o = ss.taboption('advanced', form.Value, 'mesh_rssi_threshold', _('RSSI threshold for joining mesh'), _('0 = not using RSSI threshold, 1 = do not change driver default') + ' ' + + _('Units: dBm. Where -255 is weakest, and -10 is strong.')); o.rmempty = false; o.default = '0'; o.datatype = 'range(-255,1)';